context.valueCtx.Err (method, view implemented interface methods)

29 uses

	context (current package)
		context.go#L112: 	Err() error
		context.go#L294: 	return c.Err()
		context.go#L473: 		child.cancel(false, parent.Err(), Cause(parent))
		context.go#L498: 			child.cancel(false, parent.Err(), Cause(parent))
		context.go#L512: 			child.cancel(false, parent.Err(), Cause(parent))

	crypto/tls
		conn.go#L1548: 				interruptRes <- handshakeCtx.Err()

	net
		cgo_unix.go#L81: 			Err:       mapErr(ctx.Err()).Error(),
		cgo_unix.go#L82: 			IsTimeout: ctx.Err() == context.DeadlineExceeded,
		dial.go#L614: 			return nil, &OpError{Op: "dial", Net: sd.network, Source: sd.LocalAddr, Addr: ra, Err: mapErr(ctx.Err())}
		fd_unix.go#L64: 			return nil, mapErr(ctx.Err())
		fd_unix.go#L125: 				interruptRes <- ctx.Err()
		fd_unix.go#L144: 				return nil, mapErr(ctx.Err())
		lookup.go#L357: 		err := newDNSError(mapErr(ctx.Err()), host, "")
		net.go#L807: 		return ctx.Err()

	net/http
		h2_bundle.go#L1035: 	return call.ctx.Err() != nil
		h2_bundle.go#L7758: 					err = req.Context().Err()
		h2_bundle.go#L8284: 		return ctx.Err()
		h2_bundle.go#L8463: 			return ctx.Err()
		h2_bundle.go#L8536: 			err := ctx.Err()
		h2_bundle.go#L8581: 		return ctx.Err()
		h2_bundle.go#L8638: 				err = ctx.Err()
		h2_bundle.go#L8684: 			return ctx.Err()
		h2_bundle.go#L8703: 		return ctx.Err()
		h2_bundle.go#L9067: 			return 0, ctx.Err()
		h2_bundle.go#L10209: 		return ctx.Err()
		server.go#L3080: 			return ctx.Err()
		server.go#L3691: 		switch err := ctx.Err(); err {
		socks_bundle.go#L49: 				errCh <- ctx.Err()
		transport.go#L1827: 			return nil, connectCtx.Err()